• frmStockRecord.Designer.cs
  • project /
1 namespace WarehouseManagementSystem
2 {
3     
partial class frmStockRecord
4     {

5         ///
<summary>
6         ///
Required designer variable.
7         ///
</summary>
8         
private System.ComponentModel.IContainer components = null;
9
10         ///
<summary>
11         ///
Clean up any resources being used.
12         ///
</summary>
13         ///
<param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
14         
protected override void Dispose(bool disposing)
15         {
16             
if (disposing && (components != null))
17             {
18                 components.Dispose();
19             }
20             
base.Dispose(disposing);
21         }
22
23         
#region Windows Form Designer generated code
24
25         ///
<summary>
26         ///
Required method for Designer support - do not modify
27         ///
the contents of this method with the code editor.
28         ///
</summary>
29         
private void InitializeComponent()
30         {
31             
this.components = new System.ComponentModel.Container();
32             System.ComponentModel.ComponentResourceManager resources =
new System.ComponentModel.ComponentResourceManager(typeof(frmStockRecord));
33             
this.dataGridView1 = new System.Windows.Forms.DataGridView();
34             
this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
35             
this.Column7 = new System.Windows.Forms.DataGridViewTextBoxColumn();
36             
this.Column8 = new System.Windows.Forms.DataGridViewTextBoxColumn();
37             
this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
38             
this.Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
39             
this.Column4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
40             
this.Column5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
41             
this.Column6 = new System.Windows.Forms.DataGridViewTextBoxColumn();
42             
this.Column9 = new System.Windows.Forms.DataGridViewTextBoxColumn();
43             
this.groupBox1 = new System.Windows.Forms.GroupBox();
44             
this.button5 = new System.Windows.Forms.Button();
45             
this.txtProductname = new System.Windows.Forms.TextBox();
46             
this.groupBox2 = new System.Windows.Forms.GroupBox();
47             
this.button3 = new System.Windows.Forms.Button();
48             
this.button1 = new System.Windows.Forms.Button();
49             
this.label3 = new System.Windows.Forms.Label();
50             
this.label2 = new System.Windows.Forms.Label();
51             
this.dtpStockDateTo = new System.Windows.Forms.DateTimePicker();
52             
this.dtpStockDateFrom = new System.Windows.Forms.DateTimePicker();
53             
this.button2 = new System.Windows.Forms.Button();
54             
this.Button4 = new System.Windows.Forms.Button();
55             
this.label1 = new System.Windows.Forms.Label();
56             
this.timer1 = new System.Windows.Forms.Timer(this.components);
57             ((System.ComponentModel.ISupportInitialize)(
this.dataGridView1)).BeginInit();
58             
this.groupBox1.SuspendLayout();
59             
this.groupBox2.SuspendLayout();
60             
this.SuspendLayout();
61             
//
62             
// dataGridView1
63             
//
64             
this.dataGridView1.AllowUserToAddRows = false;
65             
this.dataGridView1.AllowUserToDeleteRows = false;
66             
this.dataGridView1.BackgroundColor = System.Drawing.SystemColors.ButtonHighlight;
67             
this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
68             
this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
69             
this.Column1,
70             
this.Column7,
71             
this.Column8,
72             
this.Column2,
73             
this.Column3,
74             
this.Column4,
75             
this.Column5,
76             
this.Column6,
77             
this.Column9});
78             
this.dataGridView1.Location = new System.Drawing.Point(2, 114);
79             
this.dataGridView1.MultiSelect = false;
80             
this.dataGridView1.Name = "dataGridView1";
81             
this.dataGridView1.ReadOnly = true;
82             
this.dataGridView1.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
83             
this.dataGridView1.Size = new System.Drawing.Size(1198, 501);
84             
this.dataGridView1.TabIndex = 3;
85             
this.dataGridView1.RowPostPaint += new System.Windows.Forms.DataGridViewRowPostPaintEventHandler(this.dataGridView1_RowPostPaint);
86             
//
87             
// Column1
88             
//
89             
this.Column1.HeaderText = "Stock ID";
90             
this.Column1.Name = "Column1";
91             
this.Column1.ReadOnly = true;
92             
//
93             
// Column7
94             
//
95             
this.Column7.HeaderText = "Stock Date";
96             
this.Column7.Name = "Column7";
97             
this.Column7.ReadOnly = true;
98             
//
99             
// Column8
100             
//
101             
this.Column8.HeaderText = "Product ID";
102             
this.Column8.Name = "Column8";
103             
this.Column8.ReadOnly = true;
104             
//
105             
// Column2
106             
//
107             
this.Column2.HeaderText = "Product Name";
108             
this.Column2.Name = "Column2";
109             
this.Column2.ReadOnly = true;
110             
this.Column2.Width = 200;
111             
//
112             
// Column3
113             
//
114             
this.Column3.HeaderText = "Features";
115             
this.Column3.Name = "Column3";
116             
this.Column3.ReadOnly = true;
117             
this.Column3.Width = 200;
118             
//
119             
// Column4
120             
//
121             
this.Column4.HeaderText = "Supplier ID";
122             
this.Column4.Name = "Column4";
123             
this.Column4.ReadOnly = true;
124             
//
125             
// Column5
126             
//
127             
this.Column5.HeaderText = "Supplier Name";
128             
this.Column5.Name = "Column5";
129             
this.Column5.ReadOnly = true;
130             
this.Column5.Width = 150;
131             
//
132             
// Column6
133             
//
134             
this.Column6.HeaderText = "Quantity";
135             
this.Column6.Name = "Column6";
136             
this.Column6.ReadOnly = true;
137             
//
138             
// Column9
139             
//
140             
this.Column9.HeaderText = "Expiry Date";
141             
this.Column9.Name = "Column9";
142             
this.Column9.ReadOnly = true;
143             
//
144             
// groupBox1
145             
//
146             
this.groupBox1.Controls.Add(this.button5);
147             
this.groupBox1.Controls.Add(this.txtProductname);
148             
this.groupBox1.Location = new System.Drawing.Point(12, 12);
149             
this.groupBox1.Name = "groupBox1";
150             
this.groupBox1.Size = new System.Drawing.Size(308, 82);
151             
this.groupBox1.TabIndex = 4;
152             
this.groupBox1.TabStop = false;
153             
this.groupBox1.Text = "Search by Product Name";
154             
//
155             
// button5
156             
//
157             
this.button5.Location = new System.Drawing.Point(209, 40);
158             
this.button5.Name = "button5";
159             
this.button5.Size = new System.Drawing.Size(87, 23);
160             
this.button5.TabIndex = 16;
161             
this.button5.Text = "View Report";
162             
this.button5.UseVisualStyleBackColor = true;
163             
this.button5.Click += new System.EventHandler(this.button5_Click);
164             
//
165             
// txtProductname
166             
//
167             
this.txtProductname.Location = new System.Drawing.Point(16, 40);
168             
this.txtProductname.Name = "txtProductname";
169             
this.txtProductname.Size = new System.Drawing.Size(183, 24);
170             
this.txtProductname.TabIndex = 0;
171             
this.txtProductname.TextChanged += new System.EventHandler(this.txtProductname_TextChanged);
172             
//
173             
// groupBox2
174             
//
175             
this.groupBox2.Controls.Add(this.button3);
176             
this.groupBox2.Controls.Add(this.button1);
177             
this.groupBox2.Controls.Add(this.label3);
178             
this.groupBox2.Controls.Add(this.label2);
179             
this.groupBox2.Controls.Add(this.dtpStockDateTo);
180             
this.groupBox2.Controls.Add(this.dtpStockDateFrom);
181             
this.groupBox2.Location = new System.Drawing.Point(326, 12);
182             
this.groupBox2.Name = "groupBox2";
183             
this.groupBox2.Size = new System.Drawing.Size(513, 82);
184             
this.groupBox2.TabIndex = 5;
185             
this.groupBox2.TabStop = false;
186             
this.groupBox2.Text = "Search By Stock Date";
187             
//
188             
// button3
189             
//
190             
this.button3.Location = new System.Drawing.Point(413, 40);
191             
this.button3.Name = "button3";
192             
this.button3.Size = new System.Drawing.Size(87, 23);
193             
this.button3.TabIndex = 15;
194             
this.button3.Text = "View Report";
195             
this.button3.UseVisualStyleBackColor = true;
196             
this.button3.Click += new System.EventHandler(this.button3_Click);
197             
//
198             
// button1
199             
//
200             
this.button1.Location = new System.Drawing.Point(332, 40);
201             
this.button1.Name = "button1";
202             
this.button1.Size = new System.Drawing.Size(75, 23);
203             
this.button1.TabIndex = 14;
204             
this.button1.Text = "Search";
205             
this.button1.UseVisualStyleBackColor = true;
206             
this.button1.Click += new System.EventHandler(this.button1_Click);
207             
//
208             
// label3
209             
//
210             
this.label3.AutoSize = true;
211             
this.label3.Location = new System.Drawing.Point(172, 20);
212             
this.label3.Name = "label3";
213             
this.label3.Size = new System.Drawing.Size(24, 17);
214             
this.label3.TabIndex = 13;
215             
this.label3.Text = "To";
216             
//
217             
// label2
218             
//
219             
this.label2.AutoSize = true;
220             
this.label2.Location = new System.Drawing.Point(24, 20);
221             
this.label2.Name = "label2";
222             
this.label2.Size = new System.Drawing.Size(38, 17);
223             
this.label2.TabIndex = 12;
224             
this.label2.Text = "From";
225             
//
226             
// dtpStockDateTo
227             
//
228             
this.dtpStockDateTo.CustomFormat = "dd/MMM/yyyy";
229             
this.dtpStockDateTo.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
230             
this.dtpStockDateTo.Location = new System.Drawing.Point(175, 40);
231             
this.dtpStockDateTo.Name = "dtpStockDateTo";
232             
this.dtpStockDateTo.Size = new System.Drawing.Size(140, 24);
233             
this.dtpStockDateTo.TabIndex = 11;
234             
//
235             
// dtpStockDateFrom
236             
//
237             
this.dtpStockDateFrom.CustomFormat = "dd/MMM/yyyy";
238             
this.dtpStockDateFrom.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
239             
this.dtpStockDateFrom.Location = new System.Drawing.Point(24, 39);
240             
this.dtpStockDateFrom.Name = "dtpStockDateFrom";
241             
this.dtpStockDateFrom.Size = new System.Drawing.Size(133, 24);
242             
this.dtpStockDateFrom.TabIndex = 6;
243             
//
244             
// button2
245             
//
246             
this.button2.Font = new System.Drawing.Font("Palatino Linotype", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
247             
this.button2.Location = new System.Drawing.Point(958, 43);
248             
this.button2.Name = "button2";
249             
this.button2.Size = new System.Drawing.Size(94, 33);
250             
this.button2.TabIndex = 9;
251             
this.button2.Text = "&Reset";
252             
this.button2.UseVisualStyleBackColor = true;
253             
this.button2.Click += new System.EventHandler(this.button2_Click);
254             
//
255             
// Button4
256             
//
257             
this.Button4.Font = new System.Drawing.Font("Palatino Linotype", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
258             
this.Button4.Location = new System.Drawing.Point(858, 43);
259             
this.Button4.Name = "Button4";
260             
this.Button4.Size = new System.Drawing.Size(94, 33);
261             
this.Button4.TabIndex = 8;
262             
this.Button4.Text = "&Export Excel";
263             
this.Button4.UseVisualStyleBackColor = true;
264             
this.Button4.Click += new System.EventHandler(this.Button4_Click);
265             
//
266             
// label1
267             
//
268             
this.label1.AutoSize = true;
269             
this.label1.Location = new System.Drawing.Point(1059, 12);
270             
this.label1.Name = "label1";
271             
this.label1.Size = new System.Drawing.Size(39, 17);
272             
this.label1.TabIndex = 10;
273             
this.label1.Text = "label1";
274             
this.label1.Visible = false;
275             
//
276             
// timer1
277             
//
278             
this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
279             
//
280             
// frmStockRecord
281             
//
282             
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F);
283             
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
284             
this.BackColor = System.Drawing.SystemColors.ButtonHighlight;
285             
this.ClientSize = new System.Drawing.Size(1204, 361);
286             
this.Controls.Add(this.label1);
287             
this.Controls.Add(this.button2);
288             
this.Controls.Add(this.Button4);
289             
this.Controls.Add(this.groupBox2);
290             
this.Controls.Add(this.groupBox1);
291             
this.Controls.Add(this.dataGridView1);
292             
this.Font = new System.Drawing.Font("Palatino Linotype", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
293             
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
294             
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
295             
this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
296             
this.MaximizeBox = false;
297             
this.Name = "frmStockRecord";
298             
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
299             
this.Text = "Stock Record";
300             
this.Load += new System.EventHandler(this.frmStockRecord_Load);
301             ((System.ComponentModel.ISupportInitialize)(
this.dataGridView1)).EndInit();
302             
this.groupBox1.ResumeLayout(false);
303             
this.groupBox1.PerformLayout();
304             
this.groupBox2.ResumeLayout(false);
305             
this.groupBox2.PerformLayout();
306             
this.ResumeLayout(false);
307             
this.PerformLayout();
308
309         }
310
311         
#endregion
312
313         
public System.Windows.Forms.DataGridView dataGridView1;
314         
private System.Windows.Forms.GroupBox groupBox1;
315         
private System.Windows.Forms.TextBox txtProductname;
316         
private System.Windows.Forms.GroupBox groupBox2;
317         
internal System.Windows.Forms.Button button2;
318         
internal System.Windows.Forms.Button Button4;
319         
public System.Windows.Forms.Label label1;
320         
private System.Windows.Forms.Label label3;
321         
private System.Windows.Forms.Label label2;
322         
public System.Windows.Forms.DateTimePicker dtpStockDateTo;
323         
public System.Windows.Forms.DateTimePicker dtpStockDateFrom;
324         
private System.Windows.Forms.Button button1;
325         
private System.Windows.Forms.Button button5;
326         
private System.Windows.Forms.Button button3;
327         
private System.Windows.Forms.Timer timer1;
328         
private System.Windows.Forms.DataGridViewTextBoxColumn Column1;
329         
private System.Windows.Forms.DataGridViewTextBoxColumn Column7;
330         
private System.Windows.Forms.DataGridViewTextBoxColumn Column8;
331         
private System.Windows.Forms.DataGridViewTextBoxColumn Column2;
332         
private System.Windows.Forms.DataGridViewTextBoxColumn Column3;
333         
private System.Windows.Forms.DataGridViewTextBoxColumn Column4;
334         
private System.Windows.Forms.DataGridViewTextBoxColumn Column5;
335         
private System.Windows.Forms.DataGridViewTextBoxColumn Column6;
336         
private System.Windows.Forms.DataGridViewTextBoxColumn Column9;
337     }
338 }


Gõ tìm kiếm nhanh...